if (length(dataset[18,]) > 1){
t <- tidyr::separate_rows(dataset[18,], names(dataset[18,]), sep='; ', convert = TRUE)
t <- data.frame(lapply(t, as.character), stringsAsFactors=FALSE)
t <- tidyr::pivot_longer(t, names(t), names_to = "col", values_to = "count")
t$count <- gsub('0', NA, t$count)
t <- t[complete.cases(t), ]
library(magrittr)
t <- t %>%
tidyr::separate(count, c("reason", "n"), sep = ', ')
t <- t[!duplicated(t), ]
#format 1 - update by reason
t <- tidyr::pivot_wider(t, names_from = col, values_from = n)
t <- suppressMessages({cbind(t[,1], purrr::map2_dfc(colnames(t[,2:ncol(t)]), t[,2:ncol(t)], paste, sep = ' (n='))})
t[,2:ncol(t)] <- lapply(t[,2:ncol(t)], function(x){paste0(x, '); ')})
t[] <- lapply(t, function(x) gsub("[{}]+", "", replace(x, grepl("=NA", x), '')))
if(ncol(t) > 2) {
t$new <- do.call(paste0, c(t[,2:ncol(t)]))
} else {
t$new <- t[,2]
}
t$new <- substr(t$new, 1, nchar(t$new) - 2)
dbr_excluded <- paste(paste(t$reason, t$new, sep = ': '), collapse = '\n')
} else {
t <- stringr::str_split_fixed(dataset[18,], '; ', 2)
rownames(t) <- names(dataset)
t <- t(data.frame(subset(t, t[,1] != "0")))
if (colsnew > 1) {
t <- as.data.frame(t)
t[t==""] <- NA
t <- unname(paste0(unlist(Map(paste, t, colnames(t), sep = ' (')), ')'))
t <- stringr::str_subset(t, '^NA', negate = TRUE)
}
dbr_excluded <- paste(subset(t, substring(t, 1, 1) != " "), collapse = '\n')
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.